home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol06 / 03 / winedd / defs.h < prev    next >
Text File  |  1991-05-01  |  1KB  |  31 lines

  1. /* ------------------------------- DEFS.H ----------------------------------
  2.                      Embedded Device Driver Application.
  3.  
  4.    ------------------------------------------------------------------------- */
  5.  
  6. /* Scope definitions. */
  7. #define PRIVATE                 static
  8. #ifndef PUBLIC
  9. #   define PUBLIC               extern
  10. #endif
  11.  
  12. /* Application and class names. */
  13. #define APP_NAME                "Logger"
  14. #define APP_CLASS               "LoggerClass"
  15. #define APPICON                 1
  16. #define FEEDER_APP_NAME         "Feeder"
  17.  
  18. #define COLUMN_HEADINGS         " AX    BX    CX    DX    CS:IP       DS:SI"\
  19.                                 "       ES:DI       BP    SP"
  20.  
  21. /* Maximum number of messages we should be able to hold in our queue. */
  22. #define MAX_MESSAGES            0x100
  23.  
  24. /* Interval at which we read the device. */
  25. #define TIMER_INTERVAL          10000   /* Ten seconds. */
  26.  
  27. /* Highest device error bit. */
  28. #define HIGHEST_DEVERROR        DEVERROR_NOTOWNER
  29.  
  30. /* EOF */
  31.